runtime.hchan.sendx (field)
13 uses
runtime (current package)
chan.go#L40: sendx uint // send index
chan.go#L218: qp := chanbuf(c, c.sendx)
chan.go#L220: racenotify(c, c.sendx, nil)
chan.go#L223: c.sendx++
chan.go#L224: if c.sendx == c.dataqsiz {
chan.go#L225: c.sendx = 0
chan.go#L308: c.sendx = c.recvx // c.sendx = (c.sendx+1) % c.dataqsiz
chan.go#L644: c.sendx = c.recvx // c.sendx = (c.sendx+1) % c.dataqsiz
select.go#L450: racenotify(c, c.sendx, nil)
select.go#L459: typedmemmove(c.elemtype, chanbuf(c, c.sendx), cas.elem)
select.go#L460: c.sendx++
select.go#L461: if c.sendx == c.dataqsiz {
select.go#L462: c.sendx = 0
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |